Skip to main content

StringIsLessThanString

Type

operator

Summary

Determines whether Left is less than Right under a char by char comparison

Syntax

<Left> &lt; <Right>

Description

Left is greater than Right if and only if Left and Right are not equal, and the unicode codepoint of the first char in Left that is not equal to the corresponding char in Right is of greater value.

Parameters

NameTypeDescription

Left

An expression which evaluates to a string.

Right

An expression which evaluates to a string.

Thank you for your feedback!

Was this page helpful?